@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Playfair+Display:wght@400;500&family=Inter:wght@300;400;500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: url("images/paw3.cur.cur"), auto;
}

:root {
  --bg: #2e0d0d;
  --bg2: #3d1212;
  --bg3: #521818;
  --gold: #d4a847;
  --gold-lt: #e8c97a;
  --gold-pale: #f5e9c8;
  --gold-dim: #b8922e;
  --text: #fdf4e3;
  --text-soft: #f0d9b5;
  --text-muted: #c9a96e;
  --border: rgba(212, 168, 71, 0.22);
  --border-lt: rgba(212, 168, 71, 0.4);
  --radius: 14px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  transition: opacity 0.5s ease;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 70px;
  background: linear-gradient(
    to right,
    rgba(61, 18, 18, 0.97),
    rgba(82, 24, 24, 0.97)
  );
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition:
    transform 0.5s ease,
    opacity 0.5s ease,
    padding 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
.navbar.hidden {
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
}
.navbar.scrolled {
  padding: 12px 70px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.logo {
  font-size: 22px;
  font-weight: 400;
  font-family: "Playfair Display", serif;
  letter-spacing: 4px;
  color: var(--gold-lt);
}

nav a {
  margin: 0 18px;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s;
  font-family: "Inter", sans-serif;
  position: relative;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
nav a:hover::after {
  width: 100%;
}
nav a:hover {
  color: var(--gold-lt);
}

.cta {
  background: linear-gradient(135deg, #fffdf7, #e8d5b0, #c8a96e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #3b2608;
  background-clip: var(--text);
  border: none;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  font-family: "Inter", sans-serif;
  color: #3b2608;
  border-radius: 4px;
  transition:
    opacity 0.3s,
    transform 0.2s;
  box-shadow: 0 4px 14px rgba(212, 168, 71, 0.3);
}
.cta:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  font-size: 24px;
  color: var(--gold-pale);
  cursor: pointer;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 100vh;
  padding: 140px 90px 60px;
  gap: 80px;
  position: relative;
  background:
    radial-gradient(
      ellipse at 15% 60%,
      rgba(163, 48, 48, 0.35) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 85% 15%,
      rgba(212, 168, 71, 0.1) 0%,
      transparent 50%
    ),
    var(--bg);
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.subtitle {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 22px;
  font-family: "Times New Roman", serif;
  text-transform: uppercase;
  min-height: 1.2em;
}

.hero-left h1 {
  font-family: "Playfair Display", serif;
  font-size: 96px;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -3px;
  margin-bottom: 28px;
  color: var(--gold-pale);
}

.hero-left p {
  max-width: 480px;
  color: var(--text-soft);
  line-height: 1.85;
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 48px;
  letter-spacing: 0.3px;
}

.outline-btn {
  width: fit-content;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-lt);
  padding: 14px 36px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  border-radius: 4px;
  cursor: pointer;
}
.outline-btn:hover {
  color: var(--bg);
  background: var(--gold);
}

.hero-right {
  position: relative;
  width: 120%;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}

.preview-bg {
  display: none;
}

.hero-full-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 20px;
  box-shadow:
    0 0 0 1px var(--border-lt),
    0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.6s ease;
}
.hero-full-image:hover {
  transform: scale(1.04);
}

/* ABOUT US SECTION (homepage) */
.about-us {
  padding: 100px 90px;
  text-align: center;
  position: relative;
  background: linear-gradient(
    160deg,
    var(--bg2) 0%,
    var(--bg) 50%,
    var(--bg2) 100%
  );
}
.about-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.about-us::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold-dim),
    transparent
  );
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-us h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  color: var(--gold-lt);
  margin-bottom: 40px;
}

.intro-text {
  font-size: 17px;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto 50px;
  color: var(--text-soft);
}

.main-about-img {
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
  box-shadow:
    0 0 0 1px var(--border-lt),
    0 20px 60px rgba(0, 0, 0, 0.4);
  margin: 40px auto;
  display: block;
  transition: transform 0.5s ease;
}
.main-about-img:hover {
  transform: scale(1.02);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  align-items: flex-start;
}

.text-block {
  flex: 1;
  min-width: 350px;
  text-align: left;
}

.text-block h3 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--gold-lt);
  font-family: "Playfair Display", serif;
}

.text-block p {
  color: var(--text-soft);
  line-height: 1.85;
  font-size: 16px;
  margin-bottom: 14px;
}

.features-list {
  list-style: none;
  padding: 0;
}
.features-list li {
  font-size: 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  color: var(--text-soft);
}
.features-list span {
  font-size: 22px;
  margin-right: 12px;
}

.mission-quote {
  font-style: italic;
  font-size: 19px;
  color: var(--gold-lt);
  margin: 40px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: linear-gradient(
    135deg,
    rgba(212, 168, 71, 0.1),
    rgba(212, 168, 71, 0.04)
  );
  border-radius: 0 12px 12px 0;
}

/* ABOUT GALLERY */
.about-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.gallery-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: 0 0 0 1px var(--border);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.gallery-img:hover {
  transform: scale(1.06);
  box-shadow:
    0 0 0 2px var(--gold),
    0 12px 40px rgba(212, 168, 71, 0.2);
}

/* SECONDARY BUTTON */
.secondary-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--bg);
  border: none;
  padding: 16px 40px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 30px;
  cursor: pointer;
  border-radius: 4px;
  transition:
    opacity 0.3s,
    transform 0.2s;
  box-shadow: 0 4px 18px rgba(212, 168, 71, 0.3);
}
.secondary-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* STATS STRIP */
.stats-strip {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 70px 90px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--bg3) 0%,
    var(--bg2) 40%,
    var(--bg3) 100%
  );
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
}

.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  display: block;
  line-height: 1;
  color: var(--gold-lt);
}

.stat-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-soft);
  opacity: 0.75;
  margin-top: 8px;
  display: block;
}

/* MENU */
.menu {
  padding: 80px 90px;
  background: linear-gradient(to bottom, var(--bg2), var(--bg));
}

.menu h2 {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--gold-lt);
}

.menu-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.col {
  flex: 1;
}

.item {
  margin-bottom: 30px;
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative; /* add line divider pas */
  overflow: visible; /* pict outta frame */
  cursor: pointer;
}

.item:hover {
  transform: translateY(-8px);
}

.item img {
  width: auto;
  max-width: 100%;
  height: 200px;
  object-fit: contain;
  display: block;
  margin: 0 auto 10px;
  background-color: #2e0d0d;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.banner {
  text-align: center;
  padding: 40px 0 10px;
}
.banner .title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--gold-lt);
  margin-bottom: 8px;
}
.banner .subtitle {
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
}

.garis-bawah {
  height: 2px;
  margin: 40px 90px;
  border-radius: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold-lt),
    var(--gold),
    var(--gold-lt),
    transparent
  );
}

.item-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gold-lt);
  font-family: "Playfair Display", serif;
}
.item-title-left {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--gold-lt);
  font-family: "Playfair Display", serif;
}
.item-p-left {
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.item p {
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.divider {
  height: 1px;
  background: var(--gold-lt);
  margin: 18px 0;
  width: 0; /* Start from 0 */
  transition: width 0.5s ease; /* Animated long idea */
}

/* GALLERY PAGE */
.gallery {
  padding: 100px 90px 60px;
  background: linear-gradient(to bottom, var(--bg2), var(--bg));
}
.gallery h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 40px;
  text-align: center;
  color: var(--gold-lt);
}
.gallery h3 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: var(--gold-lt);
  margin-bottom: 24px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px var(--border);
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.gallery-item:hover {
  box-shadow:
    0 0 0 1px var(--gold),
    0 16px 40px rgba(212, 168, 71, 0.15);
  transform: translateY(-4px);
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(46, 13, 13, 0.85) 0%,
    transparent 60%
  );
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .overlay {
  opacity: 1;
}
.gallery-item .overlay p {
  color: var(--gold-lt);
  font-size: 0.9rem;
  font-weight: 500;
}

.gallery iframe {
  display: block;
  margin: 0 auto 40px;
  border-radius: var(--radius);
  box-shadow:
    0 0 0 1px var(--border),
    0 8px 30px rgba(0, 0, 0, 0.4);
  max-width: 100%;
}

/* ABOUT PAGE */
.about {
  padding: 100px 90px;
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg);
}
.about h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 24px;
  color: var(--gold-lt);
}
.about h3 {
  font-size: 26px;
  margin: 32px 0 12px;
  color: var(--gold-lt);
  font-family: "Playfair Display", serif;
}
.about p {
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--text-soft);
}
.about ul {
  padding-left: 20px;
  line-height: 2.2;
  color: var(--text-soft);
}
.about-image {
  width: 100%;
  border-radius: var(--radius);
  margin: 30px 0;
  box-shadow:
    0 0 0 1px var(--border),
    0 10px 40px rgba(0, 0, 0, 0.35);
}

/* LOCATION PAGE */
.location-hero {
  padding: 130px 90px 60px;
  text-align: center;
  position: relative;
  background: linear-gradient(
    160deg,
    var(--bg3) 0%,
    var(--bg2) 50%,
    var(--bg) 100%
  );
}
.location-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.location-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  color: var(--gold-lt);
  margin-bottom: 12px;
}
.location-hero p {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 auto;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 60px 90px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg);
}
.location-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: var(--gold-lt);
  margin-bottom: 28px;
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.info-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.info-text strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 4px;
}
.info-text span {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
}
.info-text a {
  color: var(--gold-lt);
  text-decoration: none;
}
.info-text a:hover {
  color: var(--gold);
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px var(--border-lt),
    0 12px 40px rgba(0, 0, 0, 0.4);
  height: 420px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.transport-section {
  padding: 0 90px 60px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--bg);
}
.transport-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: var(--gold-lt);
  margin-bottom: 24px;
}
.transport-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.transport-card {
  flex: 1;
  min-width: 200px;
  background: linear-gradient(
    135deg,
    rgba(212, 168, 71, 0.07),
    rgba(212, 168, 71, 0.03)
  );
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}
.transport-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(212, 168, 71, 0.12);
  border-color: var(--gold);
}
.transport-card .t-icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.transport-card h3 {
  font-size: 15px;
  color: var(--gold-lt);
  margin-bottom: 8px;
}
.transport-card p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.5;
}

/* BOOKING PAGE */
.booking-hero {
  padding: 130px 90px 60px;
  text-align: center;
  background: linear-gradient(
    160deg,
    var(--bg3) 0%,
    var(--bg2) 50%,
    var(--bg) 100%
  );
}
.booking-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 52px;
  color: var(--gold-lt);
  margin-bottom: 12px;
}
.booking-hero p {
  font-size: 18px;
  color: var(--text-soft);
}

.booking-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 40px 80px;
  background: var(--bg);
}
.booking-card {
  background: linear-gradient(
    135deg,
    rgba(212, 168, 71, 0.07) 0%,
    rgba(82, 24, 24, 0.3) 100%
  );
  border: 1px solid var(--border-lt);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.booking-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: var(--gold-lt);
  margin-bottom: 8px;
}
.booking-sub {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 32px;
  font-style: italic;
}

.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(253, 244, 227, 0.07);
  border: 1px solid var(--border-lt);
  border-radius: 10px;
  font-size: 15px;
  color: var(--text);
  font-family: "Inter", sans-serif;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 71, 0.15);
}
.form-group select option {
  background: var(--bg2);
  color: var(--text);
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.book-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--bg);
  border: none;
  padding: 16px;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition:
    opacity 0.3s,
    transform 0.2s;
  letter-spacing: 1px;
  margin-top: 8px;
  box-shadow: 0 4px 20px rgba(212, 168, 71, 0.3);
}
.book-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.booking-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}
.booking-note a {
  color: var(--gold-lt);
}

/* FOOTER */
.site-footer {
  background: linear-gradient(to bottom, var(--bg2), #280a0a);
  border-top: 1px solid var(--border-lt);
  color: var(--text);
  font-family: "Inter", sans-serif;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 70px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--gold-lt);
  margin-bottom: 14px;
}
.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-style: italic;
}
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.social-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 13px;
  transition:
    color 0.3s,
    gap 0.3s;
}
.social-icon:hover {
  color: var(--gold-lt);
  gap: 12px;
}

.footer-heading {
  font-family: "Playfair Display", serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition:
    color 0.3s,
    padding-left 0.3s;
  display: inline-block;
}
.footer-nav a:hover {
  color: var(--gold-lt);
  padding-left: 6px;
}
.footer-info p,
.footer-cta p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.footer-book-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--bg);
  border: none;
  padding: 12px 24px;
  font-size: 13px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition:
    opacity 0.3s,
    transform 0.2s;
  box-shadow: 0 4px 14px rgba(212, 168, 71, 0.25);
}
.footer-book-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(201, 169, 110, 0.45);
}
.footer-credit {
  font-style: italic;
}

footer {
  background: linear-gradient(to bottom, var(--bg2), #280a0a);
  color: var(--text);
  padding: 40px 70px;
  text-align: center;
  font-family: "Inter", sans-serif;
  border-top: 1px solid var(--border-lt);
}
footer p {
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.social-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}
.social-links a:hover {
  color: var(--gold-lt);
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 50px 40px 30px;
  }
  .footer-bottom {
    padding: 18px 40px;
  }
  .location-content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .navbar {
    padding: 20px 40px;
  }
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--bg2);
    padding: 20px;
    border-bottom: 1px solid var(--border);
  }
  .hamburger {
    display: block;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 40px 60px;
  }
  .hero-left h1 {
    font-size: 58px;
    line-height: 1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
  }
  .menu-row {
    flex-direction: column;
  }
  .about-us,
  .location-hero,
  .booking-hero {
    padding: 60px 40px;
  }
  .about-content {
    flex-direction: column;
    gap: 40px;
  }
  .about-gallery {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .location-content,
  .booking-container {
    padding: 40px;
  }
  .transport-section {
    padding: 0 40px 40px;
  }
  .stats-strip {
    gap: 30px;
    padding: 50px 40px;
  }
  .menu {
    padding: 60px 40px;
  }
  .garis-bawah {
    margin: 30px 40px;
  }
}
@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 24px 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 16px 24px;
  }
  .about-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .gallery {
    padding: 100px 24px 40px;
  }
  .menu {
    padding: 60px 24px;
  }
  .about {
    padding: 100px 24px 40px;
  }
}

/* One specific focused lighted */
.menu-row:hover .item {
  opacity: 0.5;
  filter: grayscale(0.5);
  transition: all 0.4s ease;
}

/* Hover menu effects */
.menu-row .item:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-8px) scale(1.02);
}

/* pict outta frame animation */
.item:hover img {
  transform: translateY(-15px) rotate(2deg) scale(1.1);
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
}

/* divider line prolonged when hovered */
.item:hover .divider {
  width: 100%;
}

/* open not */
#store-status {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  margin-bottom: 10px; /* Tambahkan ini agar ada jarak ke teks jam di bawahnya */
  font-weight: 600;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

.status-open {
  animation: pulse 2s infinite;
}

/* --- (PAW) --- */

.transport-card {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.transport-card::after {
  content: "🐾 🐾 🐾";
  position: absolute;
  bottom: 10px;
  left: -50px; /* hid */
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* 3. Card hovered effect 2 */
.transport-card:hover {
  background-color: rgba(221, 211, 190, 0.1); /* highlight dikit */
  transform: translateY(-5px);
}

.transport-card:hover::after {
  opacity: 1;
  animation: walk-paws 3s linear infinite;
}

/* left-right walk */
@keyframes walk-paws {
  0% {
    left: -50px;
    transform: translateX(0);
  }
  100% {
    left: 100%;
    transform: translateX(0);
  }
}

.weather-box {
  background: rgba(42, 14, 8, 0.6);
  border: 1px solid var(--gold-lt);
  padding: 12px 20px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  color: var(--gold-lt);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  backdrop-filter: blur(5px);
}

#weather-icon {
  font-size: 1.5rem;
}

/* Sticky Booking Button */
.sticky-booking {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--gold-lt);
  color: #2e0d0d;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sticky-booking:hover {
  transform: scale(1.1) translateY(-5px);
  background-color: #fff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.sticky-booking .paws {
  font-size: 1.2rem;
}

.copy-btn {
  background: none;
  border: 1px solid var(--gold-lt);
  color: var(--gold-lt);
  padding: 15px 10px;
  border-radius: 35px;
  font-size: 11px;
  cursor: pointer;
  margin-top: -5px;
  margin-left: 10px;
  transition: 0.3s;
}

.copy-btn:hover {
  background: var(--gold-lt);
  color: #2e0d0d;
}

/* ══════════════════════════════════════════
   MOBILE RESPONSIVE (specifically HP)
   ══════════════════════════════════════════ */

@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }
  .navbar nav {
    display: none;
  }

  /* HERO SECTION */
  .hero {
    flex-direction: column-reverse; /* flip pict-text */
    text-align: center;
    padding: 100px 20px 50px;
    height: auto;
    gap: 30px;
  }

  .hero-left,
  .hero-right {
    width: 100%;
    min-width: unset;
  }

  .hero-left h1 {
    font-size: 2.8rem !important;
    line-height: 1.1;
  }

  .hero-full-image {
    max-width: 80%;
    margin: 0 auto;
  }

  .about-container {
    padding: 40px 20px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .main-about-img {
    height: 300px;
  }

  .about-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .special-heading {
    font-size: 1.8rem !important;
  }

  .stats-strip {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 40px 20px;
  }

  .stat-num {
    font-size: 1.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 40px;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-cta .footer-book-btn {
    width: 100%;
  }

  #floating-book {
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 2.2rem !important;
  }

  .story-heading {
    font-size: 1.6rem !important;
  }

  .story-para {
    padding: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* --- UI/UX ENHANCEMENT --- */

/* Click focused */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ddd3be;
  outline: none;
  background-color: rgba(221, 211, 190, 0.05);
  box-shadow: 0 0 8px rgba(221, 211, 190, 0.3);
  transition: all 0.3s ease;
}

.book-btn {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  border: none;
}

.book-btn:hover {
  transform: scale(1.03) translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  filter: brightness(1.1);
}

.book-btn:active {
  transform: scale(0.98);
}

/* Smooth Transition frmn*/
.booking-card input,
.booking-card select,
.booking-card textarea {
  transition:
    border-color 0.3s,
    background-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(221, 211, 190, 0.4);
  z-index: 10;
}

.form-group input:focus + label::before {
  content: "🐾 ";
}
